--Receive service
--The service arrived at the station and processing can begin.
--Receive service
--The service arrived at the station and processing can begin
(type : integer; -- type of importer(0..failure, 1..setup, 2..processing)
 tbl : table)   -- exporter
is
do
	if type=0 then
		-- add your code here
		Station.failImp.startProcessing;
	elseif type=1 then
		-- add your code here
		Station.imp.startSetup;
	elseif type=2 then
		-- add your code here
		Station.imp.startProcessing;
	end;
end;
/*Station:Enter the name of the station which imports the service here.
*/